home *** CD-ROM | disk | FTP | other *** search
- /* */
- /* I/O definitions */
- /* */
-
- #define stdin 1
- #define stdout 2
- #define stderr 3
-
- #define printf _printf /* You may be wondering about these */
- #define sprintf _sprintf /* redefinitions of the standard C routines. */
- #define fprintf _fprintf /* This is necessary for passing variable */
- /* numbers of parameters to these functions. */
- #define scanf _scanf /* To find out how it works, you need to send */
- #define sscanf _sscanf /* for the documentation */
- #define fscanf _fscanf
-
- #define FILE int
- #define EOF -1
- #define NULL 0
-